/* Modern Layout & Stylesheet for MapleTax Consulting LLC */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --col-primary: #003b81;
    --col-secondary: #00204a;
    --col-accent: #0056b3;
    --col-gold: #f2a900;
    --col-gold-hover: #d99500;
    --col-bg-light: #f5f8f9;
    --col-bg-white: #ffffff;
    --col-text-dark: #1e293b;
    --col-text-light: #64748b;
    --col-border: #e2e8f0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--col-text-dark);
}

h1, h2, h3, h4, h5, h6, .brand-title {
    font-family: 'Outfit', sans-serif;
}

/* Premium Styling Helper Classes */
.bg-premium-dark {
    background-color: var(--col-secondary);
}

.text-gold {
    color: var(--col-gold);
}

.btn-gold {
    background-color: var(--col-gold);
    color: #000000 !important;
    font-weight: 600;
    border-radius: 30px;
    padding: 8px 24px;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: none;
}

.btn-gold:hover {
    background-color: var(--col-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 169, 0, 0.3);
    color: #000000 !important;
}

.btn-blue {
    background-color: var(--col-primary);
    color: #ffffff !important;
    font-weight: 500;
    border-radius: 30px;
    padding: 8px 24px;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-blue:hover {
    background-color: #002756;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 59, 129, 0.3);
}

/* Header Adjustments */
#mu-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--col-border);
    padding: 10px 0;
}

.header-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.header-contact-info {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: var(--col-text-light);
}

.header-contact-info a {
    color: var(--col-text-dark);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.header-contact-info a:hover {
    color: var(--col-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Navigation overrides */
#mu-menu {
    border-bottom: 1px solid var(--col-border);
    background-color: #ffffff;
}

#mu-menu .navbar-nav .nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--col-text-dark) !important;
    text-transform: none;
    padding: 15px 12px !important;
    transition: color 0.3s;
}

#mu-menu .navbar-nav .nav-link:hover,
#mu-menu .navbar-nav .active .nav-link {
    color: var(--col-primary) !important;
    text-decoration: none !important;
}

/* Dropdown styling */
.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    margin-top: 5px;
}

.navbar-nav .dropdown-item {
    font-size: 14px;
    padding: 8px 20px;
    color: var(--col-text-dark);
    transition: all 0.2s;
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--col-bg-light);
    color: var(--col-primary);
    padding-left: 24px;
}

/* Page Sub-banners */
.modern-page-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #ffffff;
}

.modern-page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 32, 74, 0.9) 0%, rgba(0, 59, 129, 0.7) 100%);
    z-index: 1;
}

.modern-page-banner .container {
    position: relative;
    z-index: 2;
}

.modern-page-banner h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.modern-page-banner .breadcrumbs {
    font-size: 14px;
    opacity: 0.8;
}

.modern-page-banner .breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
}

.modern-page-banner .breadcrumbs span {
    margin: 0 8px;
}

/* Premium Card Designs */
.modern-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 59, 129, 0.08);
    border-color: rgba(0, 59, 129, 0.1);
}

.modern-card-icon {
    font-size: 40px;
    color: var(--col-primary);
    margin-bottom: 20px;
    display: inline-block;
}

.modern-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--col-secondary);
    margin-bottom: 15px;
}

.modern-card-text {
    color: var(--col-text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modern-card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--col-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.modern-card-link:hover {
    gap: 10px;
    color: var(--col-primary);
    text-decoration: none;
}

/* Homepage Hero CSS */
.home-hero-section {
    background-color: #f8fafc !important;
    padding: 80px 0 !important;
    display: block !important;
    overflow: hidden;
}

.home-hero-title {
    font-size: 48px !important;
    font-weight: 800 !important;
    color: #00204a !important; /* Dark Navy Blue */
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    display: block !important;
}

.home-hero-desc {
    font-size: 16px !important;
    color: #64748b !important;
    line-height: 1.7 !important;
    margin-bottom: 30px !important;
    display: block !important;
}

.home-hero-img-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Ribbon Trust Indicators */
.trust-badges-bar {
    background-color: #00204a !important; /* Dark Navy Blue background from mockup */
    color: #ffffff !important;
    padding: 20px 0 !important;
    display: block !important;
}

.trust-badge-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    justify-content: center !important;
}

.trust-badge-item span {
    color: #ffffff !important;
    display: inline-block !important;
    text-align: left !important;
}

.trust-badge-item i {
    font-size: 20px !important;
    color: #f2a900 !important; /* Golden Yellow */
}

/* Our Process CSS */
.process-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.process-steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    margin-top: 40px;
}

.process-step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.process-step-icon {
    width: 70px;
    height: 70px;
    background-color: var(--col-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--col-primary);
    border: 2px dashed var(--col-border);
    transition: all 0.3s;
}

.process-step-item:hover .process-step-icon {
    background-color: var(--col-primary);
    color: #ffffff;
    border-color: var(--col-primary);
}

.process-step-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.process-step-desc {
    font-size: 13px;
    color: var(--col-text-light);
    line-height: 1.5;
}

.process-connector-line {
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2px dashed var(--col-border);
    z-index: 1;
}

/* Testimonial slider / Widget */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    margin: 10px;
}

.stars-rating {
    color: var(--col-gold);
    margin-bottom: 15px;
}

.testimonial-quote {
    font-size: 14px;
    line-height: 1.6;
    color: var(--col-text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.testimonial-role {
    font-size: 12px;
    color: var(--col-text-light);
    margin: 0;
}

/* Stats section styling */
.stats-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    padding: 30px;
    margin-top: 40px;
}

.stat-box {
    text-align: center;
    border-right: 1px solid var(--col-border);
}

.stat-box:last-child {
    border-right: none;
}

.stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--col-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: var(--col-text-light);
    font-weight: 500;
}

/* Google Reviews Snippet styling */
.google-reviews-panel {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    margin-top: 30px;
}

/* Contact Page form & Details styling */
.contact-info-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background-color: var(--col-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--col-primary);
    flex-shrink: 0;
}

.contact-info-content h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-content p {
    font-size: 13px;
    color: var(--col-text-light);
    margin: 0;
    line-height: 1.5;
}

.live-chat-panel {
    background-color: var(--col-secondary);
    color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-top: 30px;
}

.contact-form-panel {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--col-border);
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
    margin-bottom: 20px;
}

.contact-form-panel input:focus,
.contact-form-panel select:focus,
.contact-form-panel textarea:focus {
    border-color: var(--col-primary);
}

.contact-form-panel label {
    font-size: 13px;
    font-weight: 500;
    color: var(--col-text-dark);
    margin-bottom: 6px;
    display: block;
}

/* Modern Footer */
#mu-footer {
    background-color: var(--col-secondary) !important;
    color: #ffffff;
    font-size: 14px;
}

.mu-footer-top {
    background-color: var(--col-secondary) !important;
    padding: 80px 0 40px;
}

.mu-footer-top h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.mu-footer-top h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--col-gold);
}

.mu-footer-top ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mu-footer-top ul li {
    margin-bottom: 12px;
}

.mu-footer-top ul li a {
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.mu-footer-top ul li a:hover {
    color: var(--col-gold) !important;
    transform: translateX(4px);
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 16px;
    transition: all 0.3s;
}

.footer-social-icons a:hover {
    background-color: var(--col-gold);
    color: #000000 !important;
    transform: translateY(-3px);
}

.mu-footer-bottom {
    background-color: #001530 !important;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.mu-footer-bottom a {
    color: rgba(255,255,255,0.6) !important;
    text-decoration: none;
}

.mu-footer-bottom a:hover {
    color: var(--col-gold) !important;
}

/* Service Detail Lists in Home Page */
.service-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-checklist li {
    font-size: 13px;
    color: var(--col-text-light);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-checklist li i {
    color: #10b981;
    font-size: 14px;
}

/* Industry Grid Hover Style */
.industry-hover-card {
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid var(--col-border);
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    text-decoration: none;
    height: 100%;
}

.industry-hover-card:hover {
    transform: translateY(-5px);
    border-color: var(--col-primary);
    box-shadow: 0 8px 25px rgba(0, 59, 129, 0.08);
    text-decoration: none;
}

.industry-hover-card i {
    font-size: 32px;
    color: var(--col-primary);
    margin-bottom: 12px;
}

.industry-hover-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--col-secondary);
    margin: 0;
}

/* Preserved Pricing Table Styles - Redesigned to look Premium */
.price_table {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    align-items: stretch;
    column-gap: 2rem;
    row-gap: 2rem;
    max-width: 80em;
    padding: 20px 0;
}

.package {
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--col-border);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.package:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 59, 129, 0.1);
    border-color: rgba(0, 59, 129, 0.15);
}

.package h2 {
    margin: 0;
    padding: 20px;
    background: var(--col-primary);
    font-size: 1.3em;
    text-align: center;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package_bronze h2 {
    background: var(--col-primary);
}

.package_silver h2 {
    background: var(--col-secondary);
}

.package_gold h2 {
    background: #0d1b2a;
}

.price {
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--col-secondary) 0%, #001530 100%);
    color: white;
    text-align: center;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price .big {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--col-gold);
    display: inline-block;
    margin: 5px 0;
}

.ul-price {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.li-price {
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 500;
    color: var(--col-text-light);
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
}

.li-price:last-child {
    border-bottom: none;
}

.li-price:empty, .li-price:hover:empty {
    background: transparent;
    border-bottom: none;
}

.button-price {
    margin: 20px auto 30px;
    width: 80%;
    border: none;
    background: transparent;
}

.button-price a {
    display: block;
    background-color: var(--col-gold);
    color: #000000 !important;
    font-weight: 700;
    border-radius: 30px;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.button-price a:hover {
    background-color: var(--col-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 169, 0, 0.3);
}

/* ==========================================
   Blogs & Resources Section Styles
   ========================================== */

.blog-banner-section {
    position: relative;
    z-index: 1;
}

.blog-banner-section .header-title {
    font-size: 2.75rem;
    letter-spacing: -0.5px;
}

.blog-categories-wrapper {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.blog-categories-wrapper .nav-pills {
    white-space: nowrap;
}

.blog-category-badge {
    border-radius: 4px;
    font-weight: 700;
}

.blog-premium-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--col-bg-white);
    border: 1px solid var(--col-border) !important;
}

.blog-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.blog-card-title-link a:hover {
    color: var(--col-primary) !important;
}

.play-btn-overlay {
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.blog-premium-card:hover .play-btn-overlay {
    transform: translate(-50%, -50%) scale(1.15);
    background-color: rgba(242, 169, 0, 0.9) !important; /* Gold on hover! */
    color: #000000 !important;
}

.blog-detail-content {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-detail-content h2, .blog-detail-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--col-secondary);
    font-weight: 700;
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
}

